home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / ObjctItr.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  1.3 KB  |  61 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _OBJCTITR_
  4. #define _OBJCTITR_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Classes defined in this interface
  12. //==============================================================================
  13.  
  14. interface  ODObjectIterator;
  15.  
  16. //==============================================================================
  17. // Classes used by this interface
  18. //==============================================================================
  19.  
  20.  
  21.  
  22.  
  23. //==============================================================================
  24. // ODObjectIterator
  25. //==============================================================================
  26.  
  27. interface ODObjectIterator :  ODObject
  28. {
  29.     void    First(out ODISOStr key,
  30.                       out ODObject object,
  31.                    out ODULong objectLength);
  32.     void    Next(out ODISOStr key,
  33.                      out ODObject object,
  34.                   out ODULong objectLength);
  35.     ODBoolean IsNotComplete();
  36.  
  37.    
  38.  
  39. #ifdef __SOMIDL__
  40.     implementation
  41.     {
  42.         majorversion = 1; minorversion = 0;
  43.             
  44.         functionprefix = ODObjectIterator;
  45.         
  46.         override:
  47.             somUninit;
  48.             
  49.         releaseorder:
  50.             First,
  51.             Next,
  52.             IsNotComplete,
  53.  
  54.             reserved1;
  55.     
  56.     };
  57. #endif //# __SOMIDL__
  58. };
  59.  
  60. #endif // _OBJCTITR_
  61.